module Base
{

    fluid MotorOil
    {
        ColorReference  = Yellow,
        DisplayName     = Fluid_Name_Motor_Oil,

        Categories
        {
            Hazardous,
            Industrial,
			Beverage,
        }
        Properties
        {
            ThirstChange = -20.0,
        }
        Poison
        {
            maxEffect         = Deadly,
            minAmount = 0.2,
            diluteRatio = 0.1,
        }
        BlendWhiteList
        {
            whitelist = true,
            categories
            {
                Beverage,
            }
        }		
    }


    fluid UsedMotorOil
    {
        ColorReference  = Black,
        DisplayName     = Fluid_Name_Used_Motor_Oil,

        Categories
        {
            Hazardous,
            Industrial,
			Beverage,
        }
        Properties
        {
            ThirstChange = -20.0,
        }
        Poison
        {
            maxEffect         = Deadly,
            minAmount = 0.2,
            diluteRatio = 0.1,
        }
        BlendWhiteList
        {
            whitelist = true,
            categories
            {
                Beverage,
            }
        }		
    }
	
    fluid ATF
    {
        ColorReference  = Red,
        DisplayName     = Fluid_Name_ATF,

        Categories
        {
            Hazardous,
            Industrial,
			Beverage,
        }
        Properties
        {
            ThirstChange = -20.0,
        }
        Poison
        {
            maxEffect         = Deadly,
            minAmount = 0.2,
            diluteRatio = 0.1,
        }
        BlendWhiteList
        {
            whitelist = true,
            categories
            {
                Beverage,
            }
        }		
    }
    fluid Antifreeze
    {
        ColorReference  = Green,
        DisplayName     = Fluid_Name_Antifreeze,

        Categories
        {
            Hazardous,
            Industrial,
			Beverage,
        }
        Properties
        {
            ThirstChange = -20.0,
        }
        Poison
        {
            maxEffect         = Deadly,
            minAmount = 0.2,
            diluteRatio = 0.1,
        }
        BlendWhiteList
        {
            whitelist = true,
            categories
            {
                Beverage,
            }
        }		
    }	
}

